home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19971216-19980424 / 000337_news@newsmaster….columbia.edu _Wed Mar 25 21:43:10 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id VAA26441
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 25 Mar 1998 21:43:09 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id VAA26181
  7.     for kermit.misc@watsun; Wed, 25 Mar 1998 21:43:09 -0500 (EST)
  8. Path: news.columbia.edu!panix!nntprelay.mathworks.com!newshub.northeast.verio.net!cpk-news-hub1.bbnplanet.com!news.bbnplanet.com!news.mindspring.com!usenet
  9. From: jabr@mindspring.com (John Brnich)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: kermit for sco xenix
  12. Date: Thu, 26 Mar 1998 02:38:44 GMT
  13. Organization: MindSpring Enterprises, Inc.
  14. Lines: 57
  15. Message-ID: <3519b9e2.47872769@news.mindspring.com>
  16. References: <6e9nig$npb$1@camel29.mindspring.com> <6e9ol0$6dl$1@apakabar.cc.columbia.edu>
  17. Reply-To: jabr@mindspring.com
  18. NNTP-Posting-Host: user-37kbtvu.dialup.mindspring.com
  19. Mime-Version: 1.0
  20. Content-Type: text/plain; charset=us-ascii
  21. Content-Transfer-Encoding: 7bit
  22. X-Server-Date: 26 Mar 1998 02:37:05 GMT
  23. X-Newsreader: Forte Agent 1.0/32.390
  24. Xref: news.columbia.edu comp.protocols.kermit.misc:8534
  25.  
  26. fdc@watsun.cc.columbia.edu (Frank da Cruz) wrote:
  27.  
  28. >In article <6e9nig$npb$1@camel29.mindspring.com>,
  29. >John Brnich <jabr@mindspring.com> wrote:
  30. >: The following code crashes b4 the enter file name line with the
  31. >: message "line too long or contains nul characters". I can't find any
  32. >: unwanted characters using "vi". The set commands are accepted and it
  33. >: does ask for user name and password.  What is wrong?
  34. >:
  35. >If the command does not contain any NUL characters, it must be too
  36. >long.  C-Kermit's command buffer limits the size of macro definitions,
  37. >bracketed code blocks, etc.  There are two solutions:
  38. >
  39. > . 
  40. >
  41. > . Break up your macro definitions or bracketed blocks into smaller
  42. >   pieces.
  43. >
  44. >If you have long { ... } blocks, try extracting sections from them, defining
  45. >them as macros, and then calling the macros from inside the blocks.
  46. >
  47.  
  48. >
  49. >- Frank
  50.   
  51. Local sys is SCO xenix 286. I am using the binary from the
  52. \unix\sco\xenix dir  (kermit5)
  53. Thanks.  I shortened the block and the script now runs. However, the
  54. new problem:  after the remote sys (win95, procomm 32 in host mode)
  55. answers, ":they"  (I think local kermit) disconnect immediatley. I've
  56. used kermit5 in termianl mode and have connected and interacted
  57. successfully  Shold the following code work:
  58. :begin                     
  59. set modem type multitech         
  60. set line /dev/tty1a
  61. set speed 9600
  62. ;...........set carrier-watch on;(enable if having problems)??
  63. set dial retries 15            
  64. set dial timeout 65            
  65. set dial connect on
  66. echo \13
  67. :dialout
  68. echo \13
  69. dial t1800xxxxxxxx4\13
  70.  
  71. Local receives  CONNECTED 14400 RELIABLE COMPRESSED
  72.                          CALL COMPLETE  (time)
  73.  
  74. Another question...The remote uses hardware fc, local kermit uses
  75. software fc and does not seem to accept the set flow command. Does
  76. this mean the remote must be changed to software fc?
  77.  
  78. Thanks for the help!
  79. JB